home *** CD-ROM | disk | FTP | other *** search
/ Champak 120 / Vol 120.iso / games / the_samu.swf / scripts / DefineButton2_99 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2010-11-09  |  207 b   |  15 lines

  1. on(release){
  2.    if(Pause)
  3.    {
  4.       menu.gotoAndStop(1);
  5.       Pause = false;
  6.       man.mc.play();
  7.    }
  8.    else
  9.    {
  10.       menu.gotoAndPlay(2);
  11.       Pause = true;
  12.       man.mc.stop();
  13.    }
  14. }
  15.